delegate$19766$ - translation to ελληνικό
Diclib.com
Λεξικό ChatGPT
Εισάγετε μια λέξη ή φράση σε οποιαδήποτε γλώσσα 👆
Γλώσσα:

Μετάφραση και ανάλυση λέξεων από την τεχνητή νοημοσύνη ChatGPT

Σε αυτήν τη σελίδα μπορείτε να λάβετε μια λεπτομερή ανάλυση μιας λέξης ή μιας φράσης, η οποία δημιουργήθηκε χρησιμοποιώντας το ChatGPT, την καλύτερη τεχνολογία τεχνητής νοημοσύνης μέχρι σήμερα:

  • πώς χρησιμοποιείται η λέξη
  • συχνότητα χρήσης
  • χρησιμοποιείται πιο συχνά στον προφορικό ή γραπτό λόγο
  • επιλογές μετάφρασης λέξεων
  • παραδείγματα χρήσης (πολλές φράσεις με μετάφραση)
  • ετυμολογία

delegate$19766$ - translation to ελληνικό

TYPE-SAFE FUNCTION POINTER USED BY THE MICROSOFT COMMON LANGUAGE INFRASTRUCTURE
Anonymous delegate; Delegates (.NET); Multicast delegate; Multicast delegation; Delegate (.NET); Delegate (object-oriented programming); Singlecast delegate

delegate      
v. εξουσιοδοτώ, αναθέτω, αποστέλλω σαν αντιπρόσωπο
permanent representative         
HEAD OF A DIPLOMATIC MISSION TO AN INTERNATIONAL ORGANISATION
Permanent Delegate; Permanent Representatives; Permanent Representative; Perm rep; Permanent delegate
μόνιμος αντιπρόσωπος

Ορισμός

delegate
¦ noun 'd?l?g?t a person sent or authorized to represent others, in particular a representative sent to a conference.
?a member of a committee.
¦ verb 'd?l?ge?t entrust (a task or responsibility) to another person.
?authorize (someone) to act as a representative or on one's behalf: Edward was delegated to meet new arrivals.
Derivatives
delegable 'd?l?g?b(?)l adjective
delegator noun
Origin
ME: from L. delegatus 'sent on a commission', from delegare, from de- 'down' + legare 'depute'.

Βικιπαίδεια

Delegate (CLI)

A delegate is a form of type-safe function pointer used by the Common Language Infrastructure (CLI). Delegates specify a method to call and optionally an object to call the method on. Delegates are used, among other things, to implement callbacks and event listeners. A delegate object encapsulates a reference to a method. The delegate object can then be passed to code that can call the referenced method, without having to know at compile time which method will be invoked.

A multicast delegate is a delegate that points to several methods. Multicast delegation is a mechanism that provides functionality to execute more than one method. There is a list of delegates maintained internally, and when the multicast delegate is invoked, the list of delegates is executed.

In C#, delegates are often used to implement callbacks in event driven programming. For example, a delegate may be used to indicate which method should be called when the user clicks on some button. Delegates allow the programmer to notify several methods that an event has occurred.